home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / packer / xpkpwpk / install_xpkpwpk next >
Text File  |  1995-05-12  |  671b  |  32 lines

  1. ; Installation script for xpkPWPK.library
  2.  
  3. (transcript "Installing xpkPWPK.library...")
  4.  
  5. (copylib
  6.         (prompt "Install PowerPacker.library")
  7.         (help @copylib-help)
  8.         (source "LIBS/powerpacker.library")
  9.         (dest "libs:")
  10.         (confirm)
  11. )
  12.  
  13. (set cputype (+(database "CPU")) )
  14.  
  15. ( if (>  cputype 68020)
  16.     (set xpkPWPK "xpkPWPK030.library")
  17.     (set xpkPWPK "xpkPWPK.library")
  18. )
  19.  
  20. (copylib
  21.         (prompt "Install xpkPWPK.library")
  22.         (help @copylib-help)
  23.         (source (cat "LIBS/Compressors/" xpkPWPK) )
  24.         (newname "xpkPWPK.library")
  25.         (dest "libs:Compressors")
  26.         (confirm)
  27. )
  28.  
  29. (set @default-dest "libs:Compressors")
  30.  
  31. (exit)
  32.